home *** CD-ROM | disk | FTP | other *** search
- // ResourceDefs.h
-
- // Standard Resources:
- // ALRT IDs
- const short AboutID = 1;
- const short NeedsAppearanceID = 2;
- const short IOErrorID = 4;
- const short SaveID = 5;
- const short RevertID = 6;
- const short CantPrintID = 8;
-
- // 'STR ' IDs
- const short STR_SaveAsPrompt = 202;
-
- // commands:
- const long cmdQuit = 'Quit';
- const long cmdNew = 'New ';
- const long cmdOpen = 'Open';
- const long cmdClose = 'Cloe';
- const long cmdSave = 'Save';
- const long cmdSaveAs = 'Savs';
- const long cmdRevert = 'Revt';
- const long cmdPageSetup = 'Pagp';
- const long cmdPrint = 'Prit';
- const long cmdUndo = 'Undo';
- const long cmdCut = 'Cut ';
- const long cmdCopy = 'Copy';
- const long cmdPaste = 'Pase';
- const long cmdClear = 'Cler';
- const long cmdSelectAll = 'Sell';
- const long cmdShowClipboard = 'Shod';
- const long cmdAbout = 'Abot';
-
- // AMReminder Resources:
- const long MENU_Apple = 128;
- const long cAppleAbout = (128 * 65536) + 1;
-
- const long MENU_File = 129;
- const long cFileNew = (129 * 65536) + 1;
- const long cFileOpen = (129 * 65536) + 2;
- const long cFileClose = (129 * 65536) + 4;
- const long cFileSave = (129 * 65536) + 5;
- const long cFileSaveAs = (129 * 65536) + 6;
- const long cFileRevert = (129 * 65536) + 7;
- const long cFilePageSetup = (129 * 65536) + 9;
- const long cFilePrint = (129 * 65536) + 10;
- const long cFileQuit = (129 * 65536) + 12;
-
- const long MENU_Edit = 130;
- const long cEditUndo = (130 * 65536) + 1;
- const long cEditCut = (130 * 65536) + 3;
- const long cEditCopy = (130 * 65536) + 4;
- const long cEditPaste = (130 * 65536) + 5;
- const long cEditClear = (130 * 65536) + 6;
- const long cEditSelectAll = (130 * 65536) + 7;
- const long cEditShowClipboard = (130 * 65536) + 9;
-
- const long MENU_Remind = 131;
- const long cRemindCancelReminder = (131 * 65536) + 1;
- const long cRemindHideReminders = (131 * 65536) + 2;
-
-
- // for MainWindow:
- const long WIND_MainWindow = 200;
- const long PICT_Logo = 202;
- const long CNTL_Logo = 201;
- const long CNTL_Year = 203;
- const long TEXT_Year = 204;
- const long CNTL_RemindersLabel = 205;
- const long TEXT_RemindersLabel = 206;
- const long CNTL_Reminders = 208;
- const long CNTL_Add = 209;
- const long CNTL_Edit = 210;
- const long CNTL_Delete = 211;
-
- // for Reminder:
- const long WIND_Reminder = 220;
- const long CNTL_Date = 221;
- const long TEXT_Date = 222;
- const long CNTL_Time = 223;
- const long TEXT_Time = 224;
- const long CNTL_Message = 225;
- const long TEXT_Message = 226;
- const long CNTL_Line = 227;
-
- // for Add:
- const long DLOG_Add = 230;
-
- // commands:
- const long cmdAddReminder = 'Addr';
- const long cmdEditReminder = 'Edir';
- const long cmdDeleteReminder = 'Delr';
-
- // menu handles
- extern MenuHandle AppleMenu;
- extern MenuHandle FileMenu;
- extern MenuHandle EditMenu;
- extern MenuHandle RemindMenu;
- extern MenuHandle SoundPopupMenu;
-